home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Essentials / ResEdit 2.1.3.sea / ResEdit 2.1.3 / Examples / Libraries / LDEF.a next >
Text File  |  1994-07-15  |  436b  |  24 lines

  1. ; COPYRIGHT (C) 1984-1990 Apple Computer,Inc.
  2. ; All rights reserved
  3. ;LDEF.a
  4.  
  5.  
  6.               BLANKS        ON
  7.               STRING        ASIS
  8.  
  9. StdLDEF    MAIN EXPORT 
  10.  
  11.     IMPORT DrawCell
  12.  
  13.          
  14.                BRA.S     @0             ; enter here
  15.  
  16.                DC.W      0       ; flags word
  17.                DC.B       'LDEF'             ; type
  18.                DC.W      0       ; ID
  19.                DC.W      0       ; version
  20. @0
  21.                JMP     DrawCell
  22.  
  23.         END 
  24.